From: Lars Magne Ingebrigtsen Date: Wed, 15 Jun 2011 17:30:41 +0000 (+0200) Subject: Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~3454 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0b6e3ffb1567df37d0b708ce2338e578a7751c8a;p=emacs.git Renamed `process-alive-p' to `process-live-p' for consistency with other `-live-p' functions. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 8b682fd5c02..abf1bf0d8b9 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2011-06-15 Lars Magne Ingebrigtsen + + * processes.texi (Process Information): Renamed `process-alive-p' + to `process-live-p' for consistency with other `-live-p' functions. + 2011-06-03 Paul Eggert Document wide integers better. diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 2284699c82b..5d5b11497f7 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -859,7 +859,7 @@ For a network connection, @code{process-status} returns one of the symbols closed the connection, or Emacs did @code{delete-process}. @end defun -@defun process-alive-p process +@defun process-live-p process This function returns nin-@code{nil} if @var{process} is alive. A process is considered alive if its status is @code{run}, @code{open}, @code{listen}, @code{connect} or @code{stop}. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f869ec107cb..3674d798cf8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-06-15 Lars Magne Ingebrigtsen + + * subr.el (process-live-p): Renamed from `process-alive-p' for + consistency with other `-live-p' functions. + 2011-06-15 Stefan Monnier * window.el (same-window-buffer-names, same-window-regexps) diff --git a/lisp/subr.el b/lisp/subr.el index d0ef38c1140..b328b7e17b7 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1805,7 +1805,7 @@ Signal an error if the program returns with a non-zero exit status." (forward-line 1)) (nreverse lines))))) -(defun process-alive-p (process) +(defun process-live-p (process) "Returns non-nil if PROCESS is alive. A process is considered alive if its status is `run', `open', `listen', `connect' or `stop'."